home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / cli / Pip.readme < prev    next >
Encoding:
Text File  |  1992-08-14  |  742 b   |  22 lines

  1. Short: Pipes in AmigaShell
  2.  
  3. Pip 1.0 By Asher Feldman
  4.  
  5. Pip allows you to take full advantage of the PIPE: device under AmigaDos.
  6. It will allow you to easily pipe the output of one program, into another. It
  7. operates like the Unix pipe. For example, is you wanted to read a binary in
  8. hexidemal, but would like to have the output in Less, instead of using Type,
  9. it's as easy as :
  10.  
  11. pip type opt h filename | less
  12.  
  13. Note that the vertical bar is just as in Unix. 
  14.  
  15. You could also specify to have to output be in a form recognized by programs
  16. such as Ed, or other text editors. (or any nearly any program that will load a
  17. filename) with the -s option. For example :
  18.  
  19. pip -s type opt h filename | ed
  20.  
  21. Will put the ouput in Ed, instead of on your CLI.
  22.